home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-01-01 | 593 b | 16 lines | [TEXT/KAHL] |
- // Bolo code (C) Stuart Cheshire <cheshire@cs.stanford.edu> 1987-1994.
- // All rights reserved. This code is owned by Stuart Cheshire and is donated
- // free of charge for non-commercial use. You may not use this code in any
- // product sold for commercial profit, except shareware priced at $25 or less.
-
- #define BoloMessageVersion 994
-
- typedef enum { BoloSuspend = 0, BoloResume, BoloControl, BoloView } BoloCommand;
-
- typedef struct
- {
- u_long sig; // Must contain 'BOLO'
- u_long version; // For backwards and forwards compatibility
- u_long command; // The requested action
- } BoloRequest;
-